about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/Makefile2
-rw-r--r--doc/HISTORY2
-rw-r--r--lib/libpm.c4
3 files changed, 5 insertions, 3 deletions
diff --git a/converter/other/Makefile b/converter/other/Makefile
index bdacee0f..e3ef6d6a 100644
--- a/converter/other/Makefile
+++ b/converter/other/Makefile
@@ -121,6 +121,7 @@ PORTBINARIES =  avstopam bmptopnm fitstopnm \
 
 ifneq ($(DONT_HAVE_PROCESS_MGMT),Y)
   PORTBINARIES += pstopnm
+  PORTBINARIES += pnmtops
 endif
 
 BINARIES = \
@@ -128,7 +129,6 @@ BINARIES = \
   pamtopdbimg \
   pamtosrf \
   pdbimgtopam \
-  pnmtops \
   pnmtorast \
   rasttopnm \
   srftopam \
diff --git a/doc/HISTORY b/doc/HISTORY
index 84c9344d..1bd37e7f 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -24,6 +24,8 @@ not yet  BJH  Release 10.58.00
               Build: redo conditional compilation of Windows to use
               MSVCRT, based on _WIN32, instead of WIN32.
 
+              Build, Windows: various fixes.
+
               Build: use Pkgconfig to find libxml2 if it works (fall back
               to xml2-config).
 
diff --git a/lib/libpm.c b/lib/libpm.c
index f6578a59..9534b53a 100644
--- a/lib/libpm.c
+++ b/lib/libpm.c
@@ -129,8 +129,8 @@ pm_fork(int *         const iAmParentP,
         }
     }
 #else
-    asprintfN(errorP, "Cannot fork a process, because this system does "
-              "not have POSIX fork()");
+    pm_asprintf(errorP, "Cannot fork a process, because this system does "
+                "not have POSIX fork()");
 #endif
 }