Ticket #23350: Portfile.patch
File Portfile.patch, 1.2 KB (added by jberry@…, 15 years ago) |
---|
-
Portfile
4 4 5 5 name sqlite3 6 6 version 3.6.22 7 revision 1 7 8 categories databases 8 9 platforms darwin 9 10 maintainers mww … … 24 25 rmd160 3de220362e58589649b068519b9d2aa021371ca4 25 26 26 27 depends_lib port:readline \ 27 port:ncurses 28 port:ncurses \ 29 port:icu 28 30 29 31 # '-lm' makes freebsd happy & darwin not angry (and makes variants unnecessary) 30 32 # '-lncurses' is needed to build universal on Tiger; see #15661 … … 32 34 --enable-load-extension \ 33 35 --with-readline-inc="-I${prefix}/include" \ 34 36 --with-readline-lib="-L${prefix}/lib -lreadline -lm -lncurses" 37 35 38 # search in worksrcpath for sqlite3.h first -- dont pick up an installed one! 36 configure.cppflags "-DSQLITE_ENABLE_COLUMN_METADATA=1 -I${worksrcpath} -I${prefix}/include" 39 configure.cppflags "-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_ICU -DSQLITE_ENABLE_COLUMN_METADATA=1 -I${worksrcpath} -I${prefix}/include" 40 configure.ldflags "-L${prefix}/lib -licudata -licui18n -licuio -licule -liculx -licutu -licuuc" 37 41 38 42 use_parallel_build no 39 43 build.type gnu