|
From: Martin R. <ru...@us...> - 2009-03-24 18:31:05
|
Update of /cvsroot/foo/foo/libfoo In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13158 Modified Files: configure.ac Log Message: added macports paths /opt/local/xxx to default search path on darwin Index: configure.ac =================================================================== RCS file: /cvsroot/foo/foo/libfoo/configure.ac,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** configure.ac 14 Dec 2007 14:26:47 -0000 1.18 --- configure.ac 24 Mar 2009 18:30:46 -0000 1.19 *************** *** 83,94 **** # check for foundation library to use # os dependent check case "${target_os}" in *darwin*) AC_DEFINE(SYS_DARWIN, 1, Define if the system is Darwin) ! enable_gnustep=no; ;; *linux*) AC_DEFINE(SYS_LINUX, 1, Define if the system is Linux) ! enable_gnustep=yes; ;; *) --- 83,98 ---- # check for foundation library to use # os dependent check + # adjust typical os-specific paths case "${target_os}" in *darwin*) AC_DEFINE(SYS_DARWIN, 1, Define if the system is Darwin) ! enable_gnustep=no ! # for macports ! CPPFLAGS="$CPPFLAGS -I/opt/local/include" ! LDFLAGS="$LDFLAGS -L/opt/local/lib" ;; *linux*) AC_DEFINE(SYS_LINUX, 1, Define if the system is Linux) ! enable_gnustep=yes ;; *) |