summaryrefslogtreecommitdiff
path: root/jbig2dec
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2019-09-29 12:09:22 +0200
committerSebastian Rasmussen <sebras@gmail.com>2020-03-20 17:56:07 +0800
commit9394be6a45aea026f61900e1cb661a30db192c15 (patch)
treee72ebb4c280e5af1ef3494c6090eb12ed70bc89a /jbig2dec
parent1899ce3f1844cf941d19c38fc8de8f126bf7419d (diff)
downloadghostpdl-9394be6a45aea026f61900e1cb661a30db192c15.tar.gz
jbig2dec: Remove trailing whitespace.
Diffstat (limited to 'jbig2dec')
-rw-r--r--jbig2dec/CHANGES4
-rwxr-xr-xjbig2dec/autogen.sh2
-rw-r--r--jbig2dec/configure.ac.in10
-rw-r--r--jbig2dec/msvc.mak4
4 files changed, 10 insertions, 10 deletions
diff --git a/jbig2dec/CHANGES b/jbig2dec/CHANGES
index f0101b8bf..1ba91ca54 100644
--- a/jbig2dec/CHANGES
+++ b/jbig2dec/CHANGES
@@ -79,7 +79,7 @@ Version 0.7 (2004 December 8)
* successfully decodes ubc test streams 042_21, 042_22 and 042_23
* generic region template 3 handling with arbitrary AT locations
* successfully decodes ubc test streams 042_6 and 042_7
-
+
Version 0.6 (2003 December 31)
* minor portability fix for cygwin
@@ -94,7 +94,7 @@ Version 0.5 (2003 December 4)
Version 0.4 (released 2003 August 1)
- * redid license header to simplify relabelling for commercial
+ * redid license header to simplify relabelling for commercial
distribution, borrowing from Ghostscript.
Version 0.3 (released 2003 May 20)
diff --git a/jbig2dec/autogen.sh b/jbig2dec/autogen.sh
index 41a5d9719..aaa8bbee5 100755
--- a/jbig2dec/autogen.sh
+++ b/jbig2dec/autogen.sh
@@ -96,7 +96,7 @@ else
AM_NEEDED=`fgrep AUTOMAKE_OPTIONS Makefile.am | $VERSIONGREP`
AM_MAJOR_REQ=`echo $AM_NEEDED |cut -d. -f1`
AM_MINOR_REQ=`echo $AM_NEEDED |cut -d. -f2`
-
+
echo "checking for automake $AM_NEEDED or later..."
if [ $AM_MAJ -lt $AM_MAJOR_REQ -o $AM_MIN -lt $AM_MINOR_REQ ] ; then
diff --git a/jbig2dec/configure.ac.in b/jbig2dec/configure.ac.in
index 72622765e..d1669c919 100644
--- a/jbig2dec/configure.ac.in
+++ b/jbig2dec/configure.ac.in
@@ -32,7 +32,7 @@ fi
# Checks for libraries.
dnl by default we want png support if possible
-AC_ARG_WITH([libpng],
+AC_ARG_WITH([libpng],
AC_HELP_STRING([--with-libpng[=prefix]],
[include support for png output (if libpng is available)]),
[ac_cv_want_libpng="$withval"], [ac_cv_want_libpng="yes"])
@@ -68,9 +68,9 @@ AC_HEADER_STDC
AC_CHECK_HEADERS([libintl.h stddef.h unistd.h strings.h])
dnl We assume the fixed-size types from stdint.h. If that header is
-dnl not available, look for the same types in a few other headers.
+dnl not available, look for the same types in a few other headers.
dnl We also attempt to define them ourselves, but only use those if
-dnl the native versions aren't available. The substitutions happen
+dnl the native versions aren't available. The substitutions happen
dnl in a file config_types.h, whose template is created by autogen.sh
stdint_types_in="no_replacement_found"
@@ -113,7 +113,7 @@ if test "x$ac_cv_header_stdint_h" != "xyes"; then
elif test "x$stdint_types_discovered" = "xno"; then
AC_MSG_ERROR([
Unable to find suitable definitions of the stdint.h types (uint32_t and friends)
-You will have to define these yourself in a separate header.
+You will have to define these yourself in a separate header.
See config_win32.h for an example.
])
fi
@@ -136,7 +136,7 @@ dnl tested by AC_FUNC_REALLOC
AC_CHECK_FUNCS([memset strdup])
dnl use our included getopt if the system doesn't have getopt_long()
-AC_CHECK_FUNC(getopt_long,
+AC_CHECK_FUNC(getopt_long,
AC_DEFINE(HAVE_GETOPT_LONG,,
[Define if the local libc includes getopt_long()]
),[
diff --git a/jbig2dec/msvc.mak b/jbig2dec/msvc.mak
index 5c2d6bd99..446571fa3 100644
--- a/jbig2dec/msvc.mak
+++ b/jbig2dec/msvc.mak
@@ -33,7 +33,7 @@ JBIG2_IMAGE_PNG_OBJ=
EXE=.exe
OBJ=.obj
NUL=
-CFLAGS=-nologo -W4 -Zi -DHAVE_STRING_H=1 -D_CRT_SECURE_NO_WARNINGS $(LIBPNG_CFLAGS)
+CFLAGS=-nologo -W4 -Zi -DHAVE_STRING_H=1 -D_CRT_SECURE_NO_WARNINGS $(LIBPNG_CFLAGS)
CC=cl
FE=-Fe
@@ -55,7 +55,7 @@ HDRS=getopt.h jbig2.h jbig2_arith.h jbig2_arith_iaid.h jbig2_arith_int.h \
all: jbig2dec$(EXE)
jbig2dec$(EXE): $(OBJS)
- $(CC) $(CFLAGS) $(FE)jbig2dec$(EXE) $(OBJS) $(LIBPNG_LDFLAGS)
+ $(CC) $(CFLAGS) $(FE)jbig2dec$(EXE) $(OBJS) $(LIBPNG_LDFLAGS)
getopt$(OBJ): getopt.c getopt.h
$(CC) $(CFLAGS) -c getopt.c