diff options
author | Karl Ramm <kcr@mit.edu> | 2007-07-20 04:26:48 +0000 |
---|---|---|
committer | Karl Ramm <kcr@mit.edu> | 2007-07-20 04:26:48 +0000 |
commit | 82ea504def6eb144c2b13b315890b297e29345c5 (patch) | |
tree | b4623148e6feddde431fcb3b564342c5b0d64523 /clients/zpopnotify | |
parent | 0feeeb3f9ce439f7bca5b691c7c681319a107a8e (diff) | |
parent | e6df42eaf361b9878e79ab8964aa26e1ddb95cef (diff) |
unpack of new upstream
Diffstat (limited to 'clients/zpopnotify')
-rw-r--r-- | clients/zpopnotify/Makefile.in | 23 | ||||
-rw-r--r-- | clients/zpopnotify/zpopnotify.c | 2 |
2 files changed, 14 insertions, 11 deletions
diff --git a/clients/zpopnotify/Makefile.in b/clients/zpopnotify/Makefile.in index 7a0f9ce..020a181 100644 --- a/clients/zpopnotify/Makefile.in +++ b/clients/zpopnotify/Makefile.in @@ -8,31 +8,32 @@ sbindir=@sbindir@ lsbindir=@lsbindir@ includedir=${prefix}/include -mandir=@mandir@ +mandir=${prefix}/man libdir=${exec_prefix}/lib bindir=${exec_prefix}/bin +top_builddir=../.. srcdir=@srcdir@ top_srcdir=@top_srcdir@ -top_builddir=../.. BUILDTOP=../.. VPATH=@srcdir@ +LIBTOOL=@LIBTOOL@ CC=@CC@ INSTALL=@INSTALL@ -LIBTOOL=@LIBTOOL@ +LIBZEPHYR=${BUILDTOP}/lib/libzephyr.la CPPFLAGS=@CPPFLAGS@ CFLAGS=@CFLAGS@ ALL_CFLAGS=${CFLAGS} -I${top_srcdir}/h -I${BUILDTOP}/h ${CPPFLAGS} -LDFLAGS=-L${BUILDTOP}/lib @LDFLAGS@ -LIBS=${BUILDTOP}/lib/libzephyr.la @LIBS@ -lcom_err +LDFLAGS=@LDFLAGS@ +LIBS=${LIBZEPHYR} @LIBS@ -lcom_err OBJS= zpopnotify.o all: zpopnotify -zpopnotify: ${OBJS} ${BUILDTOP}/lib/libzephyr.la - ${LIBTOOL} ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS} +zpopnotify: ${OBJS} ${LIBZEPHYR} + ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS} .c.o: ${CC} -c ${ALL_CFLAGS} $< @@ -40,11 +41,13 @@ zpopnotify: ${OBJS} ${BUILDTOP}/lib/libzephyr.la check: install: zpopnotify - ${LIBTOOL} ${INSTALL} -m 755 -s zpopnotify ${DESTDIR}${sbindir} - ${LIBTOOL} ${INSTALL} -m 644 ${srcdir}/zpopnotify.8 ${DESTDIR}${mandir}/man8 + ${LIBTOOL} --mode=install ${INSTALL} -m 755 zpopnotify \ + ${DESTDIR}${sbindir} + ${INSTALL} -m 644 ${srcdir}/zpopnotify.8 ${DESTDIR}${mandir}/man8 clean: - ${LIBTOOL} rm -f ${OBJS} zpopnotify + ${LIBTOOL} --mode=clean rm -f zpopnotify + rm -f ${OBJS} ${OBJS}: ${top_srcdir}/h/sysdep.h ${BUILDTOP}/h/config.h ${OBJS}: ${BUILDTOP}/h/zephyr/zephyr.h ${BUILDTOP}/h/zephyr/zephyr_err.h diff --git a/clients/zpopnotify/zpopnotify.c b/clients/zpopnotify/zpopnotify.c index b6488c6..b2f79e3 100644 --- a/clients/zpopnotify/zpopnotify.c +++ b/clients/zpopnotify/zpopnotify.c @@ -71,7 +71,7 @@ main(argc,argv) lines[1] = "You have new mail."; (void) strcpy(mysender,"pop@"); - (void) strcat(mysender,ZGetRhs(NULL)); + (void) strcat(mysender,ZGetRealm()); for (i = 1; i < argc; i++) { (void) memset((char *)¬ice, 0, sizeof(notice)); |