about summary refs log tree commit diff
path: root/netpbm.c
diff options
context:
space:
mode:
Diffstat (limited to 'netpbm.c')
-rw-r--r--netpbm.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/netpbm.c b/netpbm.c
index 4b0cb1cd..03f4099d 100644
--- a/netpbm.c
+++ b/netpbm.c
@@ -80,16 +80,21 @@ main(int argc, char *argv[]) {
     TRY("ppmnorm", main_pnmnorm);
     TRY("ppmtotga", main_pamtotga);
     TRY("ppmtouil", main_pamtouil);
+    TRY("pnmnoraw", main_pnmtoplainpnm);
+    TRY("pnmtopnm", main_pamtopnm);
+    TRY("ppmnorm", main_pnmnorm);
+    TRY("ppmtotga", main_pamtotga);
 
     /* We don't do the ppmtojpeg alias because if user doesn't have a JPEG
        library, there is no main_pnmtojpeg library.  The right way to do
        this is to have these TRY's generated by the subdirectory makes,
        which would know whether pnmtojpeg was built into the merged binary
-       or not.  But that's too much work.  Same with TIFF converters.
+       or not.  But that's too much work.  Same with TIFF and PNG converters.
 
     TRY("ppmtojpeg", main_pnmtojpeg);
     TRY("pngtopnm", main_pngtopam);
     TRY("pnmtotiff", main_pamtotiff);
+    TRY("pamrgbatopng", main_pamtopng);
     */
 
     fprintf(stderr,"'%s' is an unknown Netpbm program name \n", cp );