]> www.fi.muni.cz Git - evince.git/commitdiff
Fixed up lists of sources so that distcheck works. Also, only build gpdf
authorNotZed <NotZed@HelixCode.com>
Fri, 25 Feb 2000 19:56:55 +0000 (19:56 +0000)
committerMichael Zucci <zucchi@src.gnome.org>
Fri, 25 Feb 2000 19:56:55 +0000 (19:56 +0000)
2000-02-25  NotZed  <NotZed@HelixCode.com>

        * Makefile.am: Fixed up lists of sources so that distcheck works.
        Also, only build gpdf if with gnome (otherwise distcheck fails).

        * gpdf.cc (container_about_cmd): Define i if we are going
        to be using it.

pdf/xpdf/ChangeLog
pdf/xpdf/Makefile.am
pdf/xpdf/gpdf.cc

index a0c2ec13b234b8ce30abac2dd6b04e2c6e3dea71..d5d39b92a080435110f9e7be8bd5ad2af3f44601 100644 (file)
@@ -1,3 +1,11 @@
+2000-02-25  NotZed  <NotZed@HelixCode.com>
+
+       * Makefile.am: Fixed up lists of sources so that distcheck works.
+       Also, only build gpdf if with gnome (otherwise distcheck fails).
+
+       * gpdf.cc (container_about_cmd): Define i if we are going
+       to be using it.
+
 2000-02-09  Michael Meeks  <michael@helixcode.com>
 
        * Clean unused & lack of casting all round the place.
index 87e021421c8cb3cda28a12f271c8a2b556120e69..9074ebc302bbbba28abf80dbee3840f801649589 100644 (file)
@@ -5,7 +5,7 @@ INCLUDES =                                      \
        $(EXTRA_GNOME_CFLAGS)
 
 if WITH_GNOME
-gui = xpdf gpdf
+gui = gpdf
 else
 gui = xpdf
 endif
@@ -14,29 +14,51 @@ bin_PROGRAMS = pdftops pdftotext pdfinfo pdftopbm pdfimages $(gui) bonobo-applic
 
 common_sources =               \
        Array.cc                \
+       Array.h                 \
        BaseFile.h              \
        Catalog.cc              \
+       Catalog.h               \
+       CompactFontInfo.h       \
        Dict.cc                 \
+       Dict.h                  \
        Error.cc                \
+       Error.h                 \
        FontEncoding.cc         \
        FontEncoding.h          \
        FontFile.cc             \
        FontFile.h              \
        FontInfo.h              \
        Gfx.cc                  \
+       Gfx.h                   \
        GfxFont.cc              \
+       GfxFont.h               \
        GfxState.cc             \
+       GfxState.h              \
        Lexer.cc                \
+       Lexer.h                 \
        Link.cc                 \
+       Link.h                  \
        Object.cc               \
+       Object.h                \
        OutputDev.cc            \
+       OutputDev.h             \
        Page.cc                 \
+       Page.h                  \
        Params.cc               \
+       Params.h                \
        Parser.cc               \
+       Parser.h                \
        PDFDoc.cc               \
+       PDFDoc.h                \
+       StdFontInfo.h           \
        Stream.cc               \
+       Stream.h                \
+       Stream-CCITT.h          \
+       TextOutputDev.h         \
+       TextOutputFontInfo.h    \
        TextOutputDev.cc        \
-       XRef.cc
+       XRef.cc                 \
+       XRef.h
 
 gpdf_CFLAGS =                  \
        -DBONOBO_IO
@@ -57,7 +79,9 @@ bonobo_application_x_pdf_SOURCES =    \
        BonoboStream.h                  \
        BonoboStream.cc                 \
        GOutputDev.cc                   \
+       GOutputDev.h                    \
        bonobo-application-x-pdf.cc     \
+       bonobo-application-x-pdf.h      \
        gtkgesture.c                    \
        gtkgesture.h
 
@@ -75,6 +99,7 @@ xpdf_SOURCES =                        \
        XOutputDev.cc           \
        LTKOutputDev.cc         \
        PSOutputDev.cc          \
+       PSOutputDev.h           \
        xpdf.cc
 
 xpdf_CFLAGS = $(X_CFLAGS)
@@ -83,6 +108,7 @@ xpdf_LDADD = ../goo/libgoo.a ../ltk/libltk.a -lXpm $(EXTRA_GNOME_LIBS)
 pdfimages_SOURCES =            \
        $(common_sources)       \
        ImageOutputDev.cc       \
+       ImageOutputDev.h        \
        pdfimages.cc
 
 pdfimages_LDADD = ../goo/libgoo.a
@@ -106,7 +132,10 @@ pdfinfo_LDADD = ../goo/libgoo.a
 pdftopbm_SOURCES =             \
        $(common_sources)       \
        PBMOutputDev.cc         \
+       PBMOutputDev.h          \
        XOutputDev.cc           \
+       XOutputDev.h            \
+       XOutputFontInfo.h       \
        pdftopbm.cc
 
 pdftopbm_LDADD = ../goo/libgoo.a $(EXTRA_GNOME_LIBS)
@@ -136,4 +165,5 @@ ltk =                       \
 gnorbadir = $(sysconfdir)/CORBA/servers
 gnorba_DATA = application-x-pdf.gnorba
 
-EXTRA_DIST = $(bitmaps) ChangeLog $(ltk) $(gnorba_DATA)
+EXTRA_DIST = $(bitmaps) ChangeLog $(ltk) $(gnorba_DATA) config.h
+
index b12ccbd5d10142c2c1f8f3fb2f18293a8bd581bd..a05326123f78c80144ef6f4e6c12d4b3d2e7fbcf 100644 (file)
@@ -311,6 +311,8 @@ container_about_cmd (GtkWidget *widget, Container *container)
   };
   
 #ifdef ENABLE_NLS
+  int i;
+
   for (i = 0; authors[i] != NULL; i++)
     authors [i] = _(authors [i]);
 #endif