Check-in Number:
|
691 | |
Date: |
2001-Aug-20 12:02:44 (local)
2001-Aug-20 10:02:44 (UTC) |
User: | rse |
Branch: | |
Comment: |
Autoconf phase 1 |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/.cvsignore 1.2 -> 1.3
--- .cvsignore 2001/07/17 12:40:06 1.2
+++ .cvsignore 2001/08/20 10:02:44 1.3
@@ -1,2 +1,6 @@
lmtp2nntp
research
+Makefile
+configure
+config.status
+config.log
|
|
ossp-pkg/lmtp2nntp/00TODO 1.10 -> 1.11
--- 00TODO 2001/08/16 15:00:50 1.10
+++ 00TODO 2001/08/20 10:02:44 1.11
@@ -2,8 +2,10 @@
openpkg
test auf mail.de.cw.net
whatsup draufleiten
-dmalloc
autoconf
+----------
+dmalloc
+
FIXMEs
//
DEBUGs
|
|
ossp-pkg/lmtp2nntp/Makefile.in -> 1.1
*** /dev/null Sat Nov 23 01:28:02 2024
--- - Sat Nov 23 01:28:14 2024
***************
*** 0 ****
--- 1,33 ----
+
+ @SET_MAKE@
+
+ ROOT = /cw
+
+ CC = @CC@
+ CFLAGS = @CFLAGS@ $(WFLAGS) `$(ROOT)/bin/str-config --cflags`
+ WFLAGS = -pedantic-errors -Wall -Wshadow -Wpointer-arith -Wcast-align -Winline -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wno-long-long
+ LDFLAGS = @LDFLAGS@ `$(ROOT)/bin/str-config --ldflags`
+ LIBS = @LIBS@ `$(ROOT)/bin/str-config --libs`
+
+ PROG = lmtp2nntp
+ HDRS = lmtp.h nntp.h sa.h argz.h shpat_match.h msg.h trace.h
+ OBJS = lmtp2nntp.o lmtp.o nntp.o sa.o argz.o shpat_match.o msg.o trace.o
+
+ all: lmtp2nntp
+
+ .c.o:
+ $(CC) $(CFLAGS) -c $<
+
+ $(PROG): Makefile $(OBJS) $(HDRS)
+ $(CC) $(LDFLAGS) -o $(PROG) $(OBJS) $(LIBS)
+
+ clean:
+ -rm -f *.core
+ -rm -f $(PROG)
+ -rm -f $(OBJS)
+
+ distclean: clean
+ -rm -f configure Makefile
+
+ test: lmtp2nntp
+ ./run.sh
|
|
ossp-pkg/lmtp2nntp/README -> 1.1
*** /dev/null Sat Nov 23 01:28:02 2024
--- - Sat Nov 23 01:28:14 2024
***************
*** 0 ****
--- 1,3 ----
+
+ OSSP lmtp2nntp - Mail to News Gateway
+
|
|
ossp-pkg/lmtp2nntp/autogen.sh -> 1.1
*** /dev/null Sat Nov 23 01:28:02 2024
--- - Sat Nov 23 01:28:14 2024
***************
*** 0 ****
--- 1,43 ----
+ #!/bin/sh
+ ##
+ ## autogen.sh: auto-generate library build environment tools
+ ##
+
+ # generator tools version sanity check
+ for spec in \
+ "autoconf --version 4 2.52 2.5*" \
+ "shtoolize -v 3 1.5.4 1.5.*"
+ do
+ set -- $spec
+ t="$1"
+ o="$2"
+ p="$3"
+ e="$4"
+ a="$5"
+ v=`($t $o | head -1 | awk "{ print \\\$$p; }") 2>/dev/null`
+ if [ ".$v" = . ]; then
+ echo "$0:ERROR: unable to determine version of $t" 1>&2
+ exit 1
+ fi
+ eval "${t}_version=\"$v\""
+ case "$v" in
+ $e )
+ ;;
+ $a )
+ echo "$0:WARNING: $t version $v still accepted, although expected $e." 1>&2
+ ;;
+ * )
+ echo "$0:ERROR: $t version $e expected, but found $v." 1>&2
+ ;;
+ esac
+ done
+
+ # GNU Autoconf generation
+ echo "GNU Autoconf $autoconf_version -> configure, config.h.in"
+ autoconf
+ #autoheader
+
+ # GNU Shtool generation
+ # echo "GNU Shtool $shtoolize_version -> shtool"
+ # shtoolize -q all
+
|
|
ossp-pkg/lmtp2nntp/configure.ac -> 1.1
*** /dev/null Sat Nov 23 01:28:02 2024
--- - Sat Nov 23 01:28:14 2024
***************
*** 0 ****
--- 1,17 ----
+ dnl ##
+ dnl ## configure.ac: GNU Autoconf script input (M4 syntax)
+ dnl ##
+
+ dnl # standard preamble
+ AC_PREREQ(2.52)
+ AC_REVISION(1.0)
+ AC_INIT(lmtp2nntp.c)
+
+ dnl # feature tests
+ AC_SET_MAKE
+ AC_PROG_CC
+
+ dnl # standard output generation
+ AC_CONFIG_FILES(Makefile:Makefile.in)
+ AC_OUTPUT
+
|
|