By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2083
Collapse All | Expand All

(-)./src/Makefile.am.ORI (-1 / +1 lines)
Lines 5-11 Link Here
5
# The library search path
5
# The library search path
6
png2qrgb_LDFLAGS = $(KDE_RPATH) $(all_libraries)
6
png2qrgb_LDFLAGS = $(KDE_RPATH) $(all_libraries)
7
# The libraries to link against
7
# The libraries to link against
8
png2qrgb_LDADD = $(LIB_KFILE) $(LIB_TDEPRINT)
8
png2qrgb_LDADD = $(LIB_KFILE) $(LIB_TDEPRINT) $(LIB_QT)
9
# The sources to be compiled
9
# The sources to be compiled
10
png2qrgb_SOURCES = png2qrgb.cpp
10
png2qrgb_SOURCES = png2qrgb.cpp
11
# Headers for the project
11
# Headers for the project
(-)./src/png2qrgb.cpp.ORI (+4 lines)
Lines 25-32 Link Here
25
#include <ntqfileinfo.h>
25
#include <ntqfileinfo.h>
26
#include <ntqdatetime.h>
26
#include <ntqdatetime.h>
27
27
28
#include <cstdlib>
28
#include <iostream>
29
#include <iostream>
29
30
31
#define EXIT_SUCCESS 0
32
#define EXIT_FAILURE 1
33
30
void fail(const char *);
34
void fail(const char *);
31
void out(const char *);
35
void out(const char *);
32
36

Return to bug 2083