Check-in Number:
|
1817 | |
Date: |
2002-Feb-06 17:56:33 (local)
2002-Feb-06 16:56:33 (UTC) |
User: | ms |
Branch: | |
Comment: |
Small build configuration changes, including some building with OSSP ex.
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from: |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/rc/Makefile.in 1.9 -> 1.10
--- Makefile.in 2002/02/05 20:48:26 1.9
+++ Makefile.in 2002/02/06 16:56:33 1.10
@@ -119,8 +119,14 @@
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man5
- $(SHTOOL) install -c -m 644 rc.1 $(mandir)/man1/rc.1
- $(SHTOOL) install -c -m 644 rc-sample.5 $(mandir)/man5/rc-sample.5
+ $(SHTOOL) install -c -m 644 rc $(DESTDIR)$(bindir)/rc
+ $(SHTOOL) install -c -m 644 rc.1 $(DESTDIR)$(mandir)/man1/rc.1
+ $(SHTOOL) install -c -m 644 rc-sample.5 $(DESTDIR)$(mandir)/man5/rc-sample.5
+
+uninstall:
+ $(RM) $(DESTDIR)$(DESTDIR)$(bindir)/rc
+ $(RM) $(DESTDIR)$(DESTDIR)$(mandir)/man1/rc.1
+ $(RM) $(DESTDIR)$(DESTDIR)$(mandir)/man5/rc-sample.5
clean:
$(RM) $(TARGET) $(OBJS) $(PROG_NAME).core rc_pcre.tab
|
|
ossp-pkg/rc/acconfig.h 1.1 -> 1.2
--- acconfig.h 2002/01/25 16:02:42 1.1
+++ acconfig.h 2002/02/06 16:56:33 1.2
@@ -1 +1,4 @@
+/* whether to use OSSP ex */
+#undef WITH_EX
+/* whether to use dmalloc */
#undef DMALLOC
|
|
ossp-pkg/rc/aclocal.m4 1.5 -> 1.6
--- aclocal.m4 2002/02/04 22:35:20 1.5
+++ aclocal.m4 2002/02/06 16:56:33 1.6
@@ -25,7 +25,7 @@
dnl ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
dnl ## SUCH DAMAGE.
dnl ##
-dnl ## aclocal.m4: GNU Autoconf local macros
+dnl ## aclocal.m4: GNU Autoconf local macro definitions
dnl ##
dnl ##
|
|
ossp-pkg/rc/configure.in 1.10 -> 1.11
--- configure.in 2002/02/05 19:11:45 1.10
+++ configure.in 2002/02/06 16:56:33 1.11
@@ -36,8 +36,8 @@
AC_DIVERT_PUSH(NOTICE)
V=`./shtool version -lc -dlong rc_version.c`
./shtool echo -e "Configuring %BOSSP rc%b, Version %B${V}%b"
-echo "Copyright (c) 2001-2002 The OSSP Project <http://www.ossp.org/>"
-echo "Copyright (c) 2001-2002 Cable & Wireless Deutschland <http://www.cw.com/de/>"
+echo "Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>"
+echo "Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>"
AC_DIVERT_POP()
dnl Process this file with autoconf
@@ -52,6 +52,10 @@
AC_HEADER_STDC
AC_PROG_INSTALL
+dnl Check for libtool
+dnl sinclude(libtool.m4)
+dnl AC_PROG_LIBTOOL
+
dnl Check other requirements
AC_SET_MAKE
AC_PROG_CC
|
|