Changeset 81252
- Timestamp:
- 07/28/11 01:32:37 (4 years ago)
- Location:
- branches/gsoc11-rev-upgrade/base
- Files:
-
- 2 edited
- 1 copied
-
configure.ac (modified) (3 diffs)
-
src/machista1.0/Makefile.in (copied) (copied from branches/gsoc11-rev-upgrade/base/src/machista1.0/Makefile) (3 diffs)
-
src/port1.0/port_autoconf.tcl.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gsoc11-rev-upgrade/base/configure.ac
r80186 r81252 125 125 AC_PATH_PROG(XAR, [xar], []) 126 126 AC_PATH_PROG(OPEN, [open], []) 127 AC_PATH_PROG(SWIG, [swig], [$PATH:/usr/local/bin]) 127 128 128 129 # Define some precious variables allowing user to override PATH for some programs … … 141 142 AC_ARG_VAR(XAR, [path to xar command]) 142 143 AC_ARG_VAR(OPEN, [path to open command]) 144 AC_ARG_VAR(SWIG, [path to swig command]) 143 145 144 146 MP_SED_EXTENDED_REGEXP … … 363 365 portmgr/freebsd/Makefile 364 366 src/Makefile 367 src/machista1.0/Makefile 365 368 src/macports1.0/macports_autoconf.tcl 366 369 src/port1.0/port_autoconf.tcl -
branches/gsoc11-rev-upgrade/base/src/machista1.0/Makefile.in
r81176 r81252 3 3 INSTALLDIR= ${DESTDIR}${datadir}/macports/Tcl/machista1.0 4 4 5 # TODO: Find SWIG via configure 6 SWIG = /usr/bin/swig 7 SWIG_FLAGS = -tcl -pkgversion 1.0 -namespace 5 SWIG = @SWIG@ 6 SWIG_FLAGS = -tcl8 -pkgversion 1.0 -namespace 8 7 SWIG_LDFLAGS = -ltcl 9 8 … … 17 16 include ../../Mk/macports.tea.mk 18 17 19 CFLAGS+= -fPIC -std=c99 -pedantic -Werror18 CFLAGS+= -fPIC -std=c99 -pedantic 20 19 21 20 ${SWIG_SRCS}:: ${SWIG_IFACE} 21 ifdef SWIG 22 22 ${SWIG} ${SWIG_FLAGS} $< 23 else 24 @echo "Building ${SWIG_SRCS} requires swig, which you apparently did not have installed when configuring MacPorts." >&2 25 @echo "Please install swig and re-run configure" >&2 26 @echo "I recommend installing SWIG 1.x in /usr/local, because as of this writing SWIG 2.x-generated code does not compile warning-free" >&2 27 @echo "If you checked out from svn you can also run svn revert in base/src/machista1.0 to get rid of this error" >&2 28 @exit 1 29 endif 23 30 24 31 ${SWIG_OBJS}:: ${SWIG_SRCS} … … 28 35 29 36 clean:: 30 rm -f ${SWIG_SRCS} ${SWIG_OBJS} ${PKG_INDEX} 37 rm -f ${SWIG_OBJS} ${PKG_INDEX} 38 ifdef SWIG 39 rm -f ${SWIG_SRCS} 40 else 41 @echo "Not cleaning SWIG-generated sources, because you have configured MacPorts without SWIG." >&2 42 endif 31 43 rm -f ${TESTS} 32 44 rm -rf ${TESTS:%=%.dSYM} -
branches/gsoc11-rev-upgrade/base/src/port1.0/port_autoconf.tcl.in
r80186 r81252 67 67 variable tar_q "@TAR_Q@" 68 68 variable hdiutil_path "@HDIUTIL@" 69 variable swig_path "@SIWG@" 69 70 variable have_launchd "@HAVE_LAUNCHD@" 70 71 variable launchctl_path "@LAUNCHCTL@"
Note: See TracChangeset
for help on using the changeset viewer.

