pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/51502 (readline 7.0 failed to build on Solaris 10)



The following reply was made to PR pkg/51502; it has been noted by GNATS.

From: Hiroshi Hakoyama <hako%affrc.go.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: pkg-manager%netbsd.org@localhost,
 pkgsrc-bugs%netbsd.org@localhost,
 gnats-admin%netbsd.org@localhost,
 dholland%NetBSD.org@localhost
Subject: Re: pkg/51502 (readline 7.0 failed to build on Solaris 10)
Date: Wed, 28 Sep 2016 12:23:13 +0900

 On 2016/09/26, at 23:25, dholland%NetBSD.org@localhost wrote:
 
 > Synopsis: readline 7.0 failed to build on Solaris 10
 >=20
 > State-Changed-From-To: feedback->open
 > State-Changed-By: dholland%NetBSD.org@localhost
 > State-Changed-When: Mon, 26 Sep 2016 14:25:09 +0000
 > State-Changed-Why:
 > feedback received
 >=20
 >=20
 >=20
 
 
 workaround: use a patch like the patch-examples_Makefile.in ver. 1.2
 
 ./work/readline-7.0/examples/Makefile.in.patched
 #
 # This is the Makefile for the readline examples subdirectory.
 #
 # Copyright (C) 1994,2008,2009 Free Software Foundation, Inc.
 
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 #   the Free Software Foundation, either version 3 of the License, or
 #   (at your option) any later version.
 
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #   GNU General Public License for more details.
 
 #   You should have received a copy of the GNU General Public License
 #   along with this program.  If not, see =
 <http://www.gnu.org/licenses/>.
 
 RL_LIBRARY_VERSION =3D @LIBVERSION@
 
 SHELL =3D @MAKE_SHELL@
 RM =3D rm -f
 
 prefix =3D @prefix@
 exec_prefix =3D @exec_prefix@
 
 datarootdir =3D @datarootdir@
 
 bindir =3D @bindir@
 srcdir =3D @srcdir@
 datadir =3D @datadir@
 VPATH =3D @srcdir@
 top_srcdir =3D @top_srcdir@
 #BUILD_DIR =3D .
 BUILD_DIR =3D @BUILD_DIR@
 installdir =3D $(datadir)/readline
 
 INSTALL =3D @INSTALL@
 INSTALL_PROGRAM =3D @INSTALL_PROGRAM@
 INSTALL_DATA =3D @INSTALL_DATA@
 
 EXEEXT =3D @EXEEXT@
 OBJEXT =3D @OBJEXT@
 
 # Support an alternate destination root directory for package building
 DESTDIR =3D
 
 DEFS =3D @DEFS@
 CC =3D @CC@
 CFLAGS =3D @CFLAGS@
 LOCAL_CFLAGS =3D @LOCAL_CFLAGS@ -DREADLINE_LIBRARY =
 -DRL_LIBRARY_VERSION=3D'"$(RL_LIB
 RARY_VERSION)"'
 CPPFLAGS =3D @CPPFLAGS@
 
 INCLUDES =3D -I$(srcdir) -I$(top_srcdir) -I..
 
 CCFLAGS  =3D $(DEFS) $(LOCAL_CFLAGS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
 LDFLAGS =3D -g -L.. @LDFLAGS@
 
 READLINE_LIB =3D ../libreadline.la
 HISTORY_LIB =3D ../libhistory.la
 
 TERMCAP_LIB =3D @TERMCAP_LIB@
 
 .c.o:
         ${RM} $@
         $(CC) $(CCFLAGS) -c $<
 
 SOURCES =3D excallback.c fileman.c histexamp.c manexamp.c rl-fgets.c =
 rl.c \
                 rlbasic.c rlcat.c rlevent.c rlptytest.c rltest.c =
 rlversion.c \
                 rl-callbacktest.c hist_erasedups.c hist_purgecmd.c=20
 
 EXECUTABLES =3D fileman$(EXEEXT) rltest$(EXEEXT) rl$(EXEEXT) =
 rlcat$(EXEEXT) \
                 rlevent$(EXEEXT) rlversion$(EXEEXT) histexamp$(EXEEXT) \
                 rl-callbacktest$(EXEEXT) rlbasic$(EXEEXT) \
                 hist_erasedups$(EXEEXT) hist_purgecmd$(EXEEXT)
 
 OBJECTS =3D fileman.o rltest.o rl.o rlevent.o rlcat.o rlversion.o =
 histexamp.o \
           rl-callbacktest.o rlbasic.o hist_erasedups.o hist_purgecmd.o
 
 OTHEREXE =3D rlptytest$(EXEEXT)
 OTHEROBJ =3D rlptytest.o
 
 all: $(EXECUTABLES)
 everything: all
 
 check:  rlversion$(EXEEXT)
         @echo Readline version: `rlversion$(EXEEXT)`
 
 installdirs:
         -$(SHELL) $(top_srcdir)/support/mkdirs $(DESTDIR)$(installdir)
 
 install:        installdirs
         @for f in $(SOURCES); do \
                 $(RM) $(DESTDIR)$(installdir)/$$f ; \
                 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(installdir) ; =
 \
         done
 
 uninstall:
         @for f in $(SOURCES); do \
                 $(RM) $(DESTDIR)$(installdir)/$$f ; \
         done
         -rmdir $(DESTDIR)$(installdir)
 
 rl$(EXEEXT): rl.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rl.o =
 $(READLINE_LIB) $(TER
 MCAP_LIB)
 
 rlbasic$(EXEEXT): rlbasic.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rlbasic.o =
 $(READLINE_LIB)=20
 $(TERMCAP_LIB)
 
 rlcat$(EXEEXT): rlcat.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rlcat.o =
 $(READLINE_LIB) $(
 TERMCAP_LIB)
 
 rlevent$(EXEEXT): rlevent.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rlevent.o =
 $(READLINE_LIB)=20
 $(TERMCAP_LIB)
 
 fileman$(EXEEXT): fileman.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ fileman.o =
 $(READLINE_LIB)=20
 $(TERMCAP_LIB)
 
 rltest$(EXEEXT): rltest.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rltest.o =
 $(READLINE_LIB) $
 (TERMCAP_LIB)
 
 rl-callbacktest$(EXEEXT): rl-callbacktest.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ =
 rl-callbacktest.o $(READLI
 NE_LIB) $(TERMCAP_LIB)
 
 rlptytest$(EXEEXT): rlptytest.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rlptytest.o =
 $(READLINE_LIB
 ) $(TERMCAP_LIB) $(LIBUTIL)
 
 rlversion$(EXEEXT): rlversion.o $(READLINE_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ rlversion.o =
 $(READLINE_LIB
 ) $(TERMCAP_LIB)
 
 histexamp$(EXEEXT): histexamp.o $(HISTORY_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ histexamp.o =
 -lhistory $(TE
 RMCAP_LIB)
 
 hist_erasedups$(EXEEXT): hist_erasedups.o $(HISTORY_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ hist_erasedups.o =
 -lhistory
  $(TERMCAP_LIB)
 
 hist_purgecmd$(EXEEXT): hist_purgecmd.o $(HISTORY_LIB)
         $(LIBTOOL) --mode=3Dlink $(CC) $(LDFLAGS) -o $@ hist_purgecmd.o =
 -lhistory=20
 $(TERMCAP_LIB)
 
 clean mostlyclean:
         $(RM) $(OBJECTS) $(OTHEROBJ)
         $(RM) $(EXECUTABLES) $(OTHEREXE) *.exe
 
 distclean maintainer-clean: clean
         $(RM) Makefile
 
 fileman.o: fileman.c
 rltest.o: rltest.c
 rl.o: rl.c
 rlversion.o: rlversion.c
 histexamp.o: histexamp.c
 hist_erasedups.o: hist_erasedups.c
 hist_purgecmd.o: hist_purgecmd.c
 rlbasic.o: rlbasic.c
 rlcat.o: rlcat.c
 rlptytest.o: rlptytest.c
 rl-callbacktest.o: rl-callbacktest.c
 
 fileman.o: $(top_srcdir)/readline.h
 rltest.o: $(top_srcdir)/readline.h
 rl.o: $(top_srcdir)/readline.h
 rlversion.o: $(top_srcdir)/readline.h
 histexamp.o: $(top_srcdir)/history.h
 hist_erasedups.o: $(top_srcdir)/history.h
 hist_purgecmd.o: $(top_srcdir)/history.h
 rlbasic.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
 rlcat.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
 rlptytest.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
 rl-callbacktest.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
 
 


Home | Main Index | Thread Index | Old Index